Component org.nuxeo.binary.metadata.contribs
In bundle org.nuxeo.binary.metadata
Requirements
Resolution Order
309
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.binary.metadata.contribs--metadataProcessors
- org.nuxeo.binary.metadata.contribs--environment
- org.nuxeo.binary.metadata.contribs--command
XML Source
<?xml version='1.0' encoding='UTF-8'?>
<component name="org.nuxeo.binary.metadata.contribs">
<require>org.nuxeo.ecm.platform.commandline.executor.service.defaultContrib</require>
<extension target="org.nuxeo.binary.metadata" point="metadataProcessors">
<processor id="exifTool" class="org.nuxeo.binary.metadata.internals.ExifToolProcessor" prefix="true"/>
</extension>
<extension target="org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent" point="environment">
<environment name="exiftool">
<parameters>
<!-- See http://search.cpan.org/dist/PAR/lib/PAR.pm#Notes -->
<parameter name="PAR_GLOBAL_TMPDIR">********</parameter>
<!-- set PAR_CLEAN cleaning PAR_GLOBAL_TEMP after execution -->
<!-- <parameter name="PAR_CLEAN">0</parameter> -->
</parameters>
</environment>
</extension>
<extension target="org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent" point="command">
<command name="exiftool-read-taglist" enabled="true">
<commandLine>exiftool</commandLine>
<parameterString>-m -q -q -G -json #{tagList} #{inFilePath}</parameterString>
<installationDirective>You need to install exiftool</installationDirective>
</command>
<command name="exiftool-read" enabled="true">
<commandLine>exiftool</commandLine>
<parameterString>-m -q -q -G -json #{inFilePath}</parameterString>
<installationDirective>You need to install exiftool</installationDirective>
</command>
<command name="exiftool-write" enabled="true">
<commandLine>exiftool</commandLine>
<parameterString>-m -q -q -G -overwrite_original #{tagList} #{inFilePath}</parameterString>
<installationDirective>You need to install exiftool</installationDirective>
</command>
<!-- Since 7.3 -->
<command name="exiftool-read-taglist-noprefix" enabled="true">
<commandLine>exiftool</commandLine>
<parameterString>-m -q -q -json #{tagList} #{inFilePath}</parameterString>
<installationDirective>You need to install exiftool</installationDirective>
</command>
<!-- Since 7.3 -->
<command name="exiftool-read-noprefix" enabled="true">
<commandLine>exiftool</commandLine>
<parameterString>-m -q -q -json #{inFilePath}</parameterString>
<installationDirective>You need to install exiftool</installationDirective>
</command>
<!-- Since 7.3 -->
<command name="exiftool-write-noprefix" enabled="true">
<commandLine>exiftool</commandLine>
<parameterString>-m -q -q -overwrite_original #{tagList} #{inFilePath}</parameterString>
<installationDirective>You need to install exiftool</installationDirective>
</command>
</extension>
</component>